home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / comm / tcp / nfsd_source.lha / nfsd / src / mount_functions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-30  |  459 b   |  21 lines

  1. /*  Headers for mount procedures
  2.  
  3.     ©1999 Joseph Walton
  4.  
  5.     This software is distributed under the terms of the GNU General Public
  6.     License; either version 2 of the License, or (at your option) any
  7.     later version.
  8. */
  9.  
  10. #ifndef NFSD_MOUNT_FUNCTIONS_H
  11. #define NFSD_MOUNT_FUNCTIONS_H
  12.  
  13. #include "nfs.h"
  14. #include "rpc.h"
  15.  
  16. nfsstat mountproc_mnt(struct Call *call, STRPTR dirpath, int32 *fh);
  17. void mountproc_umnt(struct Call *call, STRPTR dirpath);
  18.  
  19. #endif
  20.  
  21.